From: Jim Blandy Date: Mon, 21 Jun 1993 00:25:57 +0000 (+0000) Subject: * alloc.c (Fgarbage_collect): If the minibuffer is active, don't X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~95209 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=7d385b05698fdb0a4a0f3371610120105c88e00f;p=emacs.git * alloc.c (Fgarbage_collect): If the minibuffer is active, don't display the "...done" message; allow the minibuffer to show again. --- diff --git a/src/alloc.c b/src/alloc.c index f47287d4b01..22153110480 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -1358,7 +1358,7 @@ Garbage collection happens automatically if you cons more than\n\ if (gc_cons_threshold < 10000) gc_cons_threshold = 10000; - if (omessage) + if (omessage || minibuf_level > 0) message1 (omessage); else if (!noninteractive) message1 ("Garbage collecting...done");